DrawEllipse(RectangleF,Color,Single,Single[]) Method
In This Topic
Draws an ellipse using a specified line color, width and dash pattern.
If the dashPattern array contains two or more items, the ellipse is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat.
Syntax
'Declaration
Public Overloads Sub DrawEllipse( _
ByVal As System.Drawing.RectangleF, _
ByVal As System.Drawing.Color, _
ByVal As System.Single, _
ByVal () As System.Single _
)
public void DrawEllipse(
System.Drawing.RectangleF ,
System.Drawing.Color ,
System.float ,
System.float[]
)
Parameters
- bounds
- A System.Drawing.RectangleF structure that specifies the ellipse to draw.
- lineColor
- The color of lines used to draw the ellipse.
- lineWidth
- The width of lines used to draw the ellipse.
- dashPattern
- The dash pattern of lines used to draw the ellipse.
See Also